gusucode.com > VC++ Win32编程基础实例-源码程序 > VC++ Win32编程基础实例-源码程序/code/day01_02/codes/Console/Console.cpp

    // Console.cpp : Defines the entry point for the console application.
// Download by http://www.NewXing.com

#include "stdafx.h"

int main(int argc, char* argv[])
{
	printf("Hello World!\n");
	return 0;
}